(async function() { const chartData = { datasets: [{ label: 'Air Temperature', data: [{"x":0,"y":-12.8},{"x":-1,"y":-12.5},{"x":-2,"y":-12.3},{"x":-3,"y":-12.2},{"x":-4,"y":-11.7},{"x":-5,"y":-11.9},{"x":-6,"y":-11.4},{"x":-7,"y":-11.1},{"x":-8,"y":-10.9},{"x":-9,"y":-11.3},{"x":-10,"y":-12.3},{"x":-11,"y":-13.5},{"x":-12,"y":-13.4},{"x":-13,"y":-12.9},{"x":-14,"y":-13.6},{"x":-15,"y":-13.8},{"x":-16,"y":-14.4},{"x":-17,"y":-13.9},{"x":-18,"y":-12.3},{"x":-19,"y":-12.3},{"x":-20,"y":-12.8},{"x":-21,"y":-14.1},{"x":-22,"y":-15},{"x":-23,"y":-15.5}], backgroundColor: '#D5202A' }] } ctx = document.getElementById('airTemp').getContext('2d'); chart = new Chart(ctx, { type: 'scatter', data: chartData, showLine: true, options: { scales: { x: { title: { display: true, text: 'Hours', font: { size: 16 }, } }, y: { title: { display: true, text: '°C', font: { size: 16 }, } } } } }) if(chartData.datasets[0].data.length === 0) { const width = chart.width const height = chart.height const chart_ctx = chart.ctx; var fontSize = (height / 114).toFixed(2); chart_ctx.font = fontSize + "em sans-serif"; chart_ctx.fillStyle = "red"; chart_ctx.textBaseline = "middle"; var text = 'No Data', textX = Math.round((width - ctx.measureText(text).width) / 2), textY = height / 2; ctx.fillText(text, textX, textY); } })();